home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Visio 2000 Undo.xpl < prev    next >
Text File  |  2000-09-30  |  1KB  |  41 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Program Options\Microsoft Office\MS Office 2000\Visio 2000"
  5. "NAME"="Visio 2000 Undo"
  6. "VERSION"="1.00"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Number of UNDOs"
  9. "DESCRIPTION 1"="Enter the maximum number of UNDO operations VISIO will perform, for example "10" [no quotes]."
  10. "AUTHOR"="Ojatex@aol.com"
  11. "CONTACTURL"="http://members.aol.com/ojatex/"
  12. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  13. "COMMENT 1"="For additional X-Setup program information, go to http://www.xteq.com."
  14. "COMMENT 2"="Thanks to CptSiskoX for the tip."
  15.  
  16. sPath="HKCU\Software\Visio\Visio 2000\document\"
  17.  
  18. Sub Plugin_Initialize 
  19.  if RegPathExists(sPath)=false then
  20.   Call Disable()
  21.  else
  22.  
  23.   i=RegReadValue("HKCU\Software\Visio\Visio 2000\document\MaxUndo")
  24.    SetUIElement 1,i
  25.  
  26.   end if
  27. End Sub
  28.  
  29. Sub Plugin_CheckData(ElementIndex)
  30. End Sub
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  i=GetUIElement(1)
  34.  
  35.     Call RegWriteValue("HKCU\Software\Visio\Visio 2000\document\MaxUndo",i,1)
  36.  
  37. End Sub
  38.  
  39. Sub Plugin_Terminate 
  40. End Sub
  41.